home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / PAL.PAK / PALPPG.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  43 lines

  1. // palppg.h : Declaration of the CPalPropPage property page class.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14. ////////////////////////////////////////////////////////////////////////////
  15. // CPalPropPage : See palppg.cpp for implementation.
  16.  
  17. class CPalPropPage : public COlePropertyPage
  18. {
  19.     DECLARE_DYNCREATE(CPalPropPage)
  20.     DECLARE_OLECREATE_EX(CPalPropPage)
  21.  
  22. // Constructor
  23. public:
  24.     CPalPropPage();
  25.  
  26. // Dialog Data
  27.     //{{AFX_DATA(CPalPropPage)
  28.     enum { IDD = IDD_PROPPAGE_PAL };
  29.     int     m_Length;
  30.     //}}AFX_DATA
  31.  
  32. // Implementation
  33. protected:
  34.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35.  
  36. // Message maps
  37. protected:
  38.     //{{AFX_MSG(CPalPropPage)
  39.         //}}AFX_MSG
  40.     DECLARE_MESSAGE_MAP()
  41.  
  42. };
  43.